home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / lame_src / version.h < prev    next >
C/C++ Source or Header  |  2000-01-01  |  2KB  |  47 lines

  1. /*
  2.  *    Version numbering for LAME.
  3.  *
  4.  *    Copyright (c) 1999 A.L. Faber
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Library General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the GNU
  14.  * Library General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Library General Public
  17.  * License along with this library; if not, write to the
  18.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19.  * Boston, MA 02111-1307, USA.
  20.  */
  21.  
  22. #ifndef LAME_H_INCLUDED
  23. #define LAME_H_INCLUDED
  24.  
  25. #define LAME_MAJOR_VERSION    3    /* Major version number */
  26. #define LAME_MINOR_VERSION    85    /* Minor version number */
  27. #define LAME_ALPHAVERSION    0    /* Set number if this is an alpha version, otherwise zero */
  28. #define LAME_BETAVERSION        0    /* Set number if this is a beta version, otherwise zero */
  29.  
  30. #define PSY_MAJOR_VERSION    0    /* Major version number */
  31. #define PSY_MINOR_VERSION    80    /* Minor version number */
  32. #define PSY_ALPHAVERSION    0    /* Set number if this is an alpha version, otherwise zero */
  33. #define PSY_BETAVERSION        0    /* Set number if this is a beta version, otherwise zero */
  34.  
  35. #define MP3X_MAJOR_VERSION    0    /* Major version number */
  36. #define MP3X_MINOR_VERSION    82    /* Minor version number */
  37. #define MP3X_ALPHAVERSION    0    /* Set number if this is an alpha version, otherwise zero */
  38. #define MP3X_BETAVERSION    0    /* Set number if this is a beta version, otherwise zero */
  39.  
  40. #include "machine.h"
  41. void lame_print_version(FILE *);
  42. char* get_lame_version(void);        /* returns lame version number string */
  43. char* get_psy_version(void);        /* returns psy model version number string */
  44. char* get_mp3x_version(void);        /* returns mp3x version number string */
  45.  
  46. #endif
  47.